home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / shells / bashsrc.zoo / etc / bash.rc < prev    next >
Encoding:
Text File  |  1991-06-08  |  335 b   |  18 lines

  1. # Bourne Again SHell init file.
  2. #
  3. # If running interactively, then:
  4. if [ "$PS1" ]; then
  5.   # ignoreeof=
  6.   notify=
  7.   no_exit_on_failed_exec=
  8.   HISTSIZE=64
  9.   MAILCHECK=60
  10.   # A few of default aliases.
  11.   alias j='jobs -l'
  12.   alias po=popd
  13.   alias pu=pushd
  14.   if [ -f ~/bash_aliases ]; then
  15.     source ~/bash_aliases
  16.   fi
  17. fi
  18.